home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / comms / other / cmanager / rexx / sendaweb.rexx < prev    next >
OS/2 REXX Batch file  |  1999-09-06  |  373b  |  22 lines

  1. /*
  2.  *      $VER: SendAWeb.rexx 1.0 (5.8.98)
  3.  */
  4.  
  5. parse arg '"'args'" "'BROWSER'"'
  6. options results
  7.  
  8. if show('P','AWEB.1') then do
  9.           address 'AWEB.1'
  10.           OPEN args
  11.           Exit
  12. end
  13.  
  14. ADDRESS COMMAND 'Run ' BROWSER
  15. ADDRESS COMMAND "SYS:RexxC/WaitForPort" 'AWEB.1'
  16.  
  17. if show('P','AWEB.1') then do
  18.           address 'AWEB.1'
  19.           OPEN args
  20.           Exit
  21. end
  22.